Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

files of /cody/swapnilsparsh/30DaysOfJavaScript/130 - Get Mouse Position/

Readme /cody/swapnilsparsh/30DaysOfJavaScript/130 - Get Mouse Position/Readme
295 Views
0 Comments


index.html /cody/swapnilsparsh/30DaysOfJavaScript/130 - Get Mouse Position/index.html
372 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">

script.js /cody/swapnilsparsh/30DaysOfJavaScript/130 - Get Mouse Position/script.js
204 Views
0 Comments
let output = document.getElementById("output");
window.addEventListener("mousemove",(e)=>{
let xPos=e.clientX;
let yPos=
style.css /cody/swapnilsparsh/30DaysOfJavaScript/130 - Get Mouse Position/style.css
133 Views
0 Comments
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}

body{
height: 100vh;